home *** CD-ROM | disk | FTP | other *** search
/ Mobiclic 71 / MOBICLIC 71.ISO / mac / DATA / COMMUN / temp0001 / 00038_Script_38 < prev    next >
Text File  |  2004-12-05  |  399b  |  29 lines

  1. -- initialisation piste aide
  2.  
  3. global pisteAideRub, aideRub
  4.  
  5. on beginSprite
  6.   set s = the currentSpriteNum
  7.   masquerPistes s,s+1
  8.   set pisteAideRub = s
  9.   set aideRub=0
  10. end
  11.  
  12. on mouseUp
  13.   if aideRub=1 then
  14.     do "aideRub"
  15.     cursor -1
  16.   end if
  17. end
  18.  
  19. on mouseEnter
  20.   if aideRub=1 then
  21.     cursor 280
  22.   end if
  23. end
  24.  
  25. on mouseLeave
  26.   if aideRub=1 then
  27.     cursor -1
  28.   end if
  29. end